home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / BISON-TC / SYSTEM.H < prev    next >
Text File  |  1989-12-30  |  313b  |  19 lines

  1. #ifdef MSDOS
  2. #include <stdlib.h>
  3. #include <io.h>
  4. #endif /* MSDOS */
  5.  
  6. #ifdef USG
  7. #include <string.h>
  8. #else /* not USG */
  9. #ifdef MSDOS
  10. #include <string.h>
  11. #else /* not USG or MSDOS */
  12. #ifdef THINK_C
  13. #include <string.h>
  14. #else
  15. #include <strings.h>
  16. #endif /* not THINK_C */
  17. #endif /* not MSDOS */
  18. #endif /* not USG */
  19.